home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / print / bjfilt.arj / MAKEFILE < prev    next >
Text File  |  1994-02-03  |  476b  |  30 lines

  1. # Makefile for bjfilt
  2. # Copyright (C) 1994 W.G.Unruh unruh@physics.ubc.ca
  3. #Based on printmon written by K Rommel 1993
  4. # $Header$
  5. # $Log$
  6.  
  7. CC = gcc -Zomf -Zsys -O -s 
  8. O = .obj
  9. A = .lib
  10.  
  11. #CFLAGS = -I. -DDEBUG
  12. CFLAGS = -I. 
  13.  
  14. OBJS =  bjfilt$O mon16$O findstr$O
  15. LIBS = mon16$A
  16.  
  17. .SUFFIXES: .c $O
  18.  
  19. .c$O:
  20.     $(CC) $(CFLAGS) -c $<
  21.  
  22. bjfilt.exe: $(OBJS) $(LIBS)
  23.     $(CC) -o $@ $(OBJS) $(LIBS)
  24.  
  25. mon16$A: mon16.imp
  26.     emximp -o $@ $?
  27.  
  28. clean:
  29.     rm -f $(OBJS) $(LIBS)
  30.